home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / tools_install / doxygen-1.4.4-setup.exe / {app} / examples / Makefile.win.in < prev    next >
Encoding:
Makefile  |  2001-03-04  |  2.8 KB  |  102 lines

  1. DOXYDIR = ..\bin
  2.  
  3. all: class/html/index.html \
  4.      define/html/index.html \
  5.      enum/html/index.html \
  6.      file/html/index.html \
  7.      func/html/index.html \
  8.      page/html/index.html \
  9.      relates/html/index.html \
  10.      author/html/index.html \
  11.      par/html/index.html \
  12.      overload/html/index.html \
  13.      example/html/index.html \
  14.      include/html/index.html \
  15.      qtstyle/html/index.html \
  16.      jdstyle/html/index.html \
  17.      structcmd/html/index.html \
  18.      autolink/html/index.html \
  19.      restypedef/html/index.html \
  20.      afterdoc/html/index.html \
  21.      template/html/index.html \
  22.      tag/html/index.html \
  23.      group/html/index.html \
  24.      diagrams/html/index.html \
  25.      memgrp/html/index.html
  26.  
  27. clean:
  28.     deltree /y class define enum file 
  29.     deltree /y func page relates author
  30.     deltree /y par overload example include qtstyle 
  31.     deltree /y jdstyle structcmd autolink resdefine 
  32.     deltree /y restypedef afterdoc template tag group diagrams memgrp
  33.  
  34. class/html/index.html: class.h class.cfg
  35.     $(DOXYDIR)\doxygen class.cfg
  36.  
  37. define/html/index.html: define.h define.cfg
  38.     $(DOXYDIR)\doxygen define.cfg
  39.  
  40. enum/html/index.html: enum.h enum.cfg
  41.     $(DOXYDIR)\doxygen enum.cfg
  42.  
  43. file/html/index.html: file.h file.cfg
  44.     $(DOXYDIR)\doxygen file.cfg
  45.  
  46. func/html/index.html: func.h func.cfg
  47.     $(DOXYDIR)\doxygen func.cfg
  48.  
  49. page/html/index.html: page.doc page.cfg
  50.     $(DOXYDIR)\doxygen page.cfg
  51.  
  52. relates/html/index.html: relates.cpp relates.cfg
  53.     $(DOXYDIR)\doxygen relates.cfg
  54.  
  55. author/html/index.html: author.cpp author.cfg
  56.     $(DOXYDIR)\doxygen author.cfg
  57.  
  58. par/html/index.html: par.cpp par.cfg
  59.     $(DOXYDIR)\doxygen par.cfg
  60.  
  61. overload/html/index.html: overload.cpp overload.cfg
  62.     $(DOXYDIR)\doxygen overload.cfg
  63.  
  64. example/html/index.html: example.cpp example_test.cpp example.cfg 
  65.     $(DOXYDIR)\doxygen example.cfg
  66.  
  67. include/html/index.html: include.cpp example_test.cpp include.cfg 
  68.     $(DOXYDIR)\doxygen include.cfg
  69.  
  70. qtstyle/html/index.html: qtstyle.cpp qtstyle.cfg 
  71.     $(DOXYDIR)\doxygen qtstyle.cfg
  72.  
  73. jdstyle/html/index.html: jdstyle.cpp jdstyle.cfg 
  74.     $(DOXYDIR)\doxygen jdstyle.cfg
  75.  
  76. structcmd/html/index.html: structcmd.h structcmd.cfg 
  77.     $(DOXYDIR)\doxygen structcmd.cfg
  78.  
  79. autolink/html/index.html: autolink.cpp autolink.cfg 
  80.     $(DOXYDIR)\doxygen autolink.cfg
  81.  
  82. tag/html/index.html: tag.cpp tag.cfg 
  83.     $(DOXYDIR)\doxygen tag.cfg
  84.  
  85. restypedef/html/index.html: restypedef.cpp restypedef.cfg 
  86.     $(DOXYDIR)\doxygen restypedef.cfg
  87.  
  88. afterdoc/html/index.html: afterdoc.h afterdoc.cfg
  89.     $(DOXYDIR)\doxygen afterdoc.cfg
  90.  
  91. template/html/index.html: templ.cpp templ.cfg
  92.     $(DOXYDIR)\doxygen templ.cfg
  93.  
  94. group/html/index.html: group.cpp group.cfg
  95.     $(DOXYDIR)\doxygen group.cfg
  96.  
  97. memgrp/html/index.html: memgrp.cpp memgrp.cfg
  98.     $(DOXYDIR)\doxygen memgrp.cfg
  99.  
  100. diagrams/html/index.html: diagrams_a.h diagrams_b.h diagrams_c.h diagrams_d.h diagrams_e.h diagrams.cfg
  101.     $(DOXYDIR)\doxygen diagrams.cfg
  102.